home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 May / PCpro_2006_05.ISO / files / mobile / fma-2.0-stable-setup.exe / {app} / source / uSyncLog.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-06-05  |  804 b   |  44 lines

  1. unit uSyncLog;
  2.  
  3. {
  4. *******************************************************************************
  5. * Descriptions: Synchronize log window implementation
  6. * $Source: /cvsroot/fma/fma/uSyncLog.pas,v $
  7. * $Locker:  $
  8. *
  9. * Todo:
  10. *
  11. * Change Log:
  12. * $Log: uSyncLog.pas,v $
  13. * Revision 1.4  2004/06/05 13:32:56  lordlarry
  14. * Merged with OutlookSync branch
  15. *
  16. * Revision 1.3  2004/05/21 10:09:05  z_stoichev
  17. * Changed logging handle routines.
  18. *
  19. *
  20. }
  21.  
  22. interface
  23.  
  24. uses
  25.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  26.   Dialogs, uDebug, Placemnt, StdCtrls, Menus;
  27.  
  28. type
  29.   TfrmSyncLog = class(TfrmDebug)
  30.   private
  31.     { Private declarations }
  32.   public
  33.     { Public declarations }
  34.   end;
  35.  
  36. var
  37.   frmSyncLog: TfrmSyncLog;
  38.  
  39. implementation
  40.  
  41. {$R *.dfm}
  42.  
  43. end.
  44.